File tree Expand file tree Collapse file tree 2 files changed +33
-33
lines changed Expand file tree Collapse file tree 2 files changed +33
-33
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ const customizer = useCustomizerStore();
66
77const openNotice = () => {
88 customizer .SET_TITLE (' お知らせ' );
9- router .push (' /notice' );
9+ router .push (' /admin/ notice' );
1010};
1111 </script >
1212
Original file line number Diff line number Diff line change @@ -5,38 +5,38 @@ import vuetify from 'vite-plugin-vuetify';
55
66// https://vitejs.dev/config/
77export default defineConfig ( {
8- server : {
9- host : '0.0.0.0' ,
10- port : 3000
11- } ,
12- plugins : [
13- vue ( {
14- template : {
15- compilerOptions : {
16- isCustomElement : ( tag ) => [ 'v-list-recognize-title' ] . includes ( tag )
8+ server : {
9+ host : '0.0.0.0' ,
10+ port : 3000
11+ } ,
12+ plugins : [
13+ vue ( {
14+ template : {
15+ compilerOptions : {
16+ isCustomElement : ( tag ) => [ 'v-list-recognize-title' ] . includes ( tag )
17+ }
18+ }
19+ } ) ,
20+ vuetify ( {
21+ autoImport : true
22+ } )
23+ ] ,
24+ resolve : {
25+ alias : {
26+ '@' : fileURLToPath ( new URL ( './src' , import . meta. url ) ) ,
27+ 'vue-i18n' : 'vue-i18n/dist/vue-i18n.esm-bundler.js'
1728 }
18- }
19- } ) ,
20- vuetify ( {
21- autoImport : true
22- } )
23- ] ,
24- resolve : {
25- alias : {
26- '@' : fileURLToPath ( new URL ( './src' , import . meta. url ) ) ,
27- 'vue-i18n' : 'vue-i18n/dist/vue-i18n.esm-bundler.js'
28- }
29- } ,
30- css : {
31- preprocessorOptions : {
32- scss : { }
29+ } ,
30+ css : {
31+ preprocessorOptions : {
32+ scss : { }
33+ }
34+ } ,
35+ build : {
36+ chunkSizeWarningLimit : 1024 * 1024 // Set the limit to 1 MB
37+ } ,
38+ optimizeDeps : {
39+ exclude : [ 'vuetify' ] ,
40+ entries : [ './src/**/*.vue' ]
3341 }
34- } ,
35- build : {
36- chunkSizeWarningLimit : 1024 * 1024 // Set the limit to 1 MB
37- } ,
38- optimizeDeps : {
39- exclude : [ 'vuetify' ] ,
40- entries : [ './src/**/*.vue' ]
41- }
4242} ) ;
You can’t perform that action at this time.
0 commit comments