Skip to content

Commit 8a93bd0

Browse files
Fix: Change imports from partial v0/src and src to to complete v0/src (#523)
Fix: completely transfer imports to v0/src from partial imports to v0/src and src
1 parent 2a9f309 commit 8a93bd0

File tree

4 files changed

+11
-10
lines changed

4 files changed

+11
-10
lines changed

src-tauri/tauri.conf.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
"width": 800,
1717
"height": 600,
1818
"resizable": true,
19-
"fullscreen": false
19+
"fullscreen": false,
20+
"devtools": true
2021
}
2122
],
2223
"security": {

tsconfig.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
"skipLibCheck": true,
1515
"baseUrl": "./",
1616
"paths": {
17-
"#/*": ["./src/*"],
18-
"@/*": ["./src/components/*"]
17+
"#/*": ["./v0/src/*"],
18+
"@/*": ["./v0/src/components/*"]
1919
},
2020
"allowJs": true,
2121
"declaration": true,
@@ -24,11 +24,11 @@
2424
"declarationMap": true
2525
},
2626
"include": [
27-
"src/**/*.ts",
28-
"src/**/*.d.ts",
29-
"src/**/*.tsx",
30-
"src/**/*.vue",
31-
"src/**/*",
27+
"v0/src/**/*.ts",
28+
"v0/src/**/*.d.ts",
29+
"v0/src/**/*.tsx",
30+
"v0/src/**/*.vue",
31+
"v0/src/**/*",
3232
"commitlint.config.js"
3333
],
3434
"references": [{ "path": "./tsconfig.node.json" }]

v0/src/components/Navbar/Navbar.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@import url('/src/styles/color_theme.scss');
1+
@import url('/v0/src/styles/color_theme.scss');
22

33
.navbar {
44
background-color: var(--white);

v1/src/components/Navbar/Navbar.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@import url('/src/styles/color_theme.scss');
1+
@import url('/v1/src/styles/color_theme.scss');
22

33
.navbar {
44
background-color: var(--white);

0 commit comments

Comments
 (0)