elk/nuxt.config.ts

32 lines
629 B
TypeScript
Raw Normal View History

2022-11-13 05:34:43 +00: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-13 16:05:32 +00:00
'~/styles/vars.css',
2022-11-15 16:39:25 +00:00
'~/styles/global.css',
2022-11-13 05:34:43 +00:00
],
colorMode: {
classSuffix: '',
},
2022-11-14 03:45:20 +00:00
alias: {
querystring: 'rollup-plugin-node-polyfills/polyfills/qs',
},
2022-11-14 03:33:09 +00:00
postcss: {
plugins: {
'postcss-nested': {},
},
},
2022-11-15 15:54:58 +00:00
runtimeConfig: {
registedAppsUrl: process.env.APPS_JSON_URL || 'http://localhost:3000/registered-apps.json',
},
2022-11-13 05:34:43 +00:00
})