diff --git a/.github/workflows/hugo.yml b/.github/workflows/hugo.yml index de813b1..43c9a73 100644 --- a/.github/workflows/hugo.yml +++ b/.github/workflows/hugo.yml @@ -73,8 +73,6 @@ jobs: hugo \ --minify \ --baseURL "${{ steps.pages.outputs.base_url }}" - - name: Build Tailwind CSS - run: npm run build:tw - name: Upload artifact uses: actions/upload-pages-artifact@v3 with: diff --git a/config/_default/hugo.toml b/config/_default/hugo.toml new file mode 100644 index 0000000..e69de29 diff --git a/config/production/config.toml b/config/production/config.toml index adeabb3..2539cb5 100644 --- a/config/production/config.toml +++ b/config/production/config.toml @@ -1,5 +1,4 @@ baseURL = "https://aurelia.io/website/" -publishDir = "public" [params] pathPrefix = "/website" \ No newline at end of file diff --git a/hugo.toml b/hugo.toml index 1e6befc..353cbaa 100644 --- a/hugo.toml +++ b/hugo.toml @@ -7,18 +7,4 @@ theme = "aurelia-theme" pathPrefix = "" [outputs] - home = ["HTML", "RSS", "JSON"] - -[build] - writeStats = true - -[module] - [module.hugoVersion] - extended = true - [[module.mounts]] - source = "assets" - target = "assets" - - [[module.mounts]] - source = "static" - target = "static" \ No newline at end of file + home = ["HTML", "RSS", "JSON"] \ No newline at end of file diff --git a/postcss.config.js b/postcss.config.js index 59bd88d..61f9c0f 100644 --- a/postcss.config.js +++ b/postcss.config.js @@ -3,6 +3,5 @@ module.exports = { '@tailwindcss/postcss': { config: './tailwind.config.js', }, - 'autoprefixer': {}, } };