2022-11-13 14:34:43 +09:00
|
|
|
export default defineNuxtConfig({
|
|
|
|
modules: [
|
|
|
|
'@vueuse/nuxt',
|
|
|
|
'@unocss/nuxt',
|
|
|
|
'@pinia/nuxt',
|
|
|
|
'@nuxtjs/color-mode',
|
|
|
|
],
|
|
|
|
experimental: {
|
|
|
|
reactivityTransform: true,
|
|
|
|
inlineSSRStyles: false,
|
|
|
|
},
|
|
|
|
css: [
|
|
|
|
'@unocss/reset/tailwind.css',
|
2022-11-14 01:05:32 +09:00
|
|
|
'~/styles/vars.css',
|
2022-11-16 01:39:25 +09:00
|
|
|
'~/styles/global.css',
|
2022-11-13 14:34:43 +09:00
|
|
|
],
|
|
|
|
colorMode: {
|
|
|
|
classSuffix: '',
|
|
|
|
},
|
2022-11-14 12:45:20 +09:00
|
|
|
alias: {
|
|
|
|
querystring: 'rollup-plugin-node-polyfills/polyfills/qs',
|
|
|
|
},
|
2022-11-16 02:14:10 +09:00
|
|
|
vite: {
|
|
|
|
define: {
|
|
|
|
__BUILD_TIME__: JSON.stringify(new Date().toISOString()),
|
|
|
|
},
|
|
|
|
},
|
2022-11-14 12:33:09 +09:00
|
|
|
postcss: {
|
|
|
|
plugins: {
|
|
|
|
'postcss-nested': {},
|
|
|
|
},
|
|
|
|
},
|
2022-11-16 00:54:58 +09:00
|
|
|
runtimeConfig: {
|
|
|
|
registedAppsUrl: process.env.APPS_JSON_URL || 'http://localhost:3000/registered-apps.json',
|
|
|
|
},
|
2022-11-13 14:34:43 +09:00
|
|
|
})
|