fix: fixes next.js build to not include server files

Also fixes the next.js build to properly purge unused css classes from tailwind
pull/10/head
sct 4 years ago
parent 28854190a0
commit de8ee9ba85

@ -8,7 +8,7 @@
"build:next": "next build", "build:next": "next build",
"build": "yarn build:next && yarn build:server", "build": "yarn build:next && yarn build:server",
"lint": "eslint \"./server/**/*.{ts,tsx}\" \"./src/**/*.{ts,tsx}\"", "lint": "eslint \"./server/**/*.{ts,tsx}\" \"./src/**/*.{ts,tsx}\"",
"start": "NODE_ENV=production node dist/server/index.js" "start": "NODE_ENV=production node dist/index.js"
}, },
"dependencies": { "dependencies": {
"@tailwindcss/ui": "^0.5.0", "@tailwindcss/ui": "^0.5.0",

@ -7,5 +7,6 @@
"strictPropertyInitialization": false, "strictPropertyInitialization": false,
"experimentalDecorators": true, "experimentalDecorators": true,
"emitDecoratorMetadata": true "emitDecoratorMetadata": true
} },
"include": ["**/*.ts", "**/*.tsx"]
} }

@ -2,7 +2,7 @@
const defaultTheme = require('tailwindcss/defaultTheme'); const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = { module.exports = {
purge: ['./pages/**/*.{ts,tsx}', './components/**/*.{ts,tsx}'], purge: ['./src/pages/**/*.{ts,tsx}', './src/components/**/*.{ts,tsx}'],
theme: { theme: {
extend: { extend: {
fontFamily: { fontFamily: {

@ -14,6 +14,6 @@
"isolatedModules": true, "isolatedModules": true,
"jsx": "preserve" "jsx": "preserve"
}, },
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], "include": ["next-env.d.ts", "src/**/*.ts", "src/**/*.tsx"],
"exclude": ["node_modules"] "exclude": ["node_modules"]
} }

Loading…
Cancel
Save