6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
18 |
--------------------------------------------------------------------------------
/nuxt.config.js:
--------------------------------------------------------------------------------
1 | export default {
2 | // Disable server-side rendering: https://go.nuxtjs.dev/ssr-mode
3 | ssr: false,
4 |
5 | // Global page headers: https://go.nuxtjs.dev/config-head
6 | head: {
7 | title: 'nuxt3-bbs',
8 | htmlAttrs: {
9 | lang: 'en'
10 | },
11 | meta: [
12 | { charset: 'utf-8' },
13 | { name: 'viewport', content: 'width=device-width, initial-scale=1' },
14 | { hid: 'description', name: 'description', content: '' },
15 | { name: 'format-detection', content: 'telephone=no' }
16 | ],
17 | link: [
18 | { rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }
19 | ]
20 | },
21 |
22 | // Global CSS: https://go.nuxtjs.dev/config-css
23 | css: [
24 | ],
25 |
26 | // Plugins to run before rendering page: https://go.nuxtjs.dev/config-plugins
27 | plugins: [
28 | ],
29 |
30 | // Auto import components: https://go.nuxtjs.dev/config-components
31 | components: true,
32 |
33 | // Modules for dev and build (recommended): https://go.nuxtjs.dev/config-modules
34 | buildModules: [
35 | ],
36 |
37 | // Modules: https://go.nuxtjs.dev/config-modules
38 | modules: [
39 | '@nuxtjs/tailwindcss'
40 | ],
41 |
42 | // Build Configuration: https://go.nuxtjs.dev/config-build
43 | build: {
44 | }
45 | }
46 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "nuxt3-bbs",
3 | "version": "1.0.0",
4 | "author": "ahnshy