mirror of
https://github.com/ArthurDanjou/website-old.git
synced 2026-01-28 02:40:33 +01:00
Initial commit 🚀
This commit is contained in:
47
nuxt.config.js
Normal file
47
nuxt.config.js
Normal file
@@ -0,0 +1,47 @@
|
||||
import { Axios, Head } from './config'
|
||||
|
||||
export default {
|
||||
head: Head,
|
||||
|
||||
server: {
|
||||
host: '0.0.0.0',
|
||||
port: 3333
|
||||
},
|
||||
|
||||
css: [
|
||||
],
|
||||
|
||||
plugins: [
|
||||
],
|
||||
|
||||
components: true,
|
||||
|
||||
buildModules: [
|
||||
'@nuxt/typescript-build',
|
||||
'@nuxtjs/tailwindcss',
|
||||
],
|
||||
|
||||
modules: [
|
||||
['@nuxtjs/axios', Axios],
|
||||
],
|
||||
|
||||
buildDir: 'build',
|
||||
|
||||
srcDir: 'src',
|
||||
|
||||
dir: {
|
||||
assets: 'assets',
|
||||
layouts: 'templates/layouts',
|
||||
middleware: 'middleware',
|
||||
pages: 'templates/pages',
|
||||
static: 'public',
|
||||
store: 'store',
|
||||
},
|
||||
|
||||
build: {},
|
||||
|
||||
pageTransition: {
|
||||
name: 'page',
|
||||
mode: 'out-in',
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user