Skip to content

Commit 800304a

Browse files
committed
modify :style
1 parent a670265 commit 800304a

File tree

2 files changed

+33
-33
lines changed

2 files changed

+33
-33
lines changed

src/layouts/admin/vertical-header/NotificationDD.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const customizer = useCustomizerStore();
66
77
const openNotice = () => {
88
customizer.SET_TITLE('お知らせ');
9-
router.push('/notice');
9+
router.push('/admin/notice');
1010
};
1111
</script>
1212

vite.config.ts

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -5,38 +5,38 @@ import vuetify from 'vite-plugin-vuetify';
55

66
// https://vitejs.dev/config/
77
export 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
});

0 commit comments

Comments
 (0)