Compare commits

..

2 Commits

Author SHA1 Message Date
efim 1f7fdfb387 fix tailwind search path 2023-04-23 18:07:00 +04:00
efim fe4fe8a51d hack to fix Vite loading
for some reason I was getting error:
Failed to load url 	/home/enefedov/Documents/personal/planning-poker-grargh/common/.js/target/scala-3.2.0/common-fastopt/main.js (resolved id: 	/home/enefedov/Documents/personal/planning-poker-grargh/common/.js/target/scala-3.2.0/common-fastopt/main.js) in /home/enefedov/Documents/personal/planning-poker-grargh/main.js. Does the file exist?
2023-04-23 18:06:37 +04:00
2 changed files with 3 additions and 2 deletions

View File

@ -1,2 +1,3 @@
import './style.css' import './style.css'
import 'scalajs:main.js' import './frontend/target/scala-3.2.0/frontend-fastopt/main.js'
// import 'scalajs:main.js'

View File

@ -3,7 +3,7 @@ export default {
content: [ content: [
"./index.html", "./index.html",
"./main.js", "./main.js",
"./src/**/*.{js,ts,jsx,tsx,scala}", "./frontend/src/**/*.{js,ts,jsx,tsx,scala}",
], ],
theme: { theme: {
extend: {}, extend: {},