moved go files to src
This commit is contained in:
+2
-2
@@ -12,8 +12,8 @@
|
||||
"tailwindcss": "^3.4.17"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "tailwindcss build -o static/styles.css --minify",
|
||||
"watch": "tailwindcss build -o static/styles.css --watch",
|
||||
"build": "tailwindcss build -o src/static/styles.css --minify",
|
||||
"watch": "tailwindcss build -o src/static/styles.css --watch",
|
||||
"which": "which tailwindcss"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,13 +2,13 @@
|
||||
"version": "2",
|
||||
"sql": [
|
||||
{
|
||||
"schema": "migrations/20240915072431_initial.sql",
|
||||
"queries": "sql/query.sql",
|
||||
"schema": "src/migrations/20240915072431_initial.sql",
|
||||
"queries": "src/sql/query.sql",
|
||||
"engine": "sqlite",
|
||||
"gen": {
|
||||
"go": {
|
||||
"package": "event",
|
||||
"out": "event",
|
||||
"out": "src/event",
|
||||
"emit_json_tags": true
|
||||
}
|
||||
},
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
module.exports = {
|
||||
content: ["./components.templ"],
|
||||
content: ["./src/components.templ"],
|
||||
theme: {
|
||||
extend: {},
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user