Skip to content

Commit

Permalink
🐞 fix: correct theme path
Browse files Browse the repository at this point in the history
  • Loading branch information
chkilel committed Mar 2, 2022
1 parent 024aad1 commit a079534
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion version.yaml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
1.0.0: Initial release
1.0.1: Update theme dependency
1.0.1: Update theme dependency
1.1.0 : Update dependencies and fix minor bugs
3 changes: 2 additions & 1 deletion vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ import WindiCSS from 'vite-plugin-windicss'
import {resolve} from 'path'

export default ({command}) => ({
base: command === 'serve' ? '' : '/themes/vitewind/public/build/',
// please update the path name [chkilel-vitewind] to your theme folder name
base: command === 'serve' ? '' : '/themes/chkilel-vitewind/public/build/',
publicDir: 'fake_dir_so_nothing_gets_copied',
processCssUrls: true,
build: {
Expand Down

0 comments on commit a079534

Please sign in to comment.