Skip to content

Commit

Permalink
Fix up configs when compiling for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
grantjbutler committed Feb 10, 2022
1 parent 025e46b commit 3528e88
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
8 changes: 6 additions & 2 deletions postcss.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
const { join } = require('path');

module.exports = {
plugins: {
tailwindcss: {},
tailwindcss: {
config: join(__dirname, 'tailwind.config.js'),
},
autoprefixer: {},
},
}
};
3 changes: 2 additions & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
const plugin = require('tailwindcss/plugin');
const colors = require('tailwindcss/colors');
const { join } = require('path');

module.exports = {
content: [
'packages/**/*.vue',
join(__dirname, 'packages', '**', '*.vue'),
],
theme: {
extend: {
Expand Down

0 comments on commit 3528e88

Please sign in to comment.