UNPKG

532 BJavaScriptView Raw
1module.exports = {
2 // Nuxt modules
3 modules: [
4 'nuxt7'
5 ],
6
7 // PWA manifest
8 // https://github.com/nuxt-community/pwa-module
9 manifest: {
10 name: '<%= name %>',
11 description: '<%= description %>'
12 },
13
14 // Framework7 Config
15 framework7: {
16 // ...
17 },
18
19 // Build configuration
20 build: {
21 // Extract CSS in a separated file
22 extractCSS: true,
23
24 // You can extend webpack config here
25 extend (config) {
26 // ...
27 }
28 },
29
30 // Additional CSS configuration
31 css: [
32 'assets/app.css'
33 ]
34}