mirror of
https://github.com/xHyroM/roles-bot.git
synced 2024-11-12 20:18:06 +01:00
why css not working lol
This commit is contained in:
parent
66bebfc5d1
commit
1844b3743b
3 changed files with 10 additions and 5 deletions
9
.github/workflows/pages.yml
vendored
9
.github/workflows/pages.yml
vendored
|
@ -15,8 +15,13 @@ jobs:
|
|||
- uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: 12
|
||||
- run: cd src/web && npm ci
|
||||
- run: cd src/web && npm run ghbuild
|
||||
|
||||
- name: Build
|
||||
run: |
|
||||
cd src/web
|
||||
npm i
|
||||
npm run build
|
||||
npm run export
|
||||
|
||||
- name: Deploy site
|
||||
uses: JamesIves/github-pages-deploy-action@4.1.4
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
module.exports = {
|
||||
basePath: '/roles-bot',
|
||||
assetPrefix: '/roles-bot/'
|
||||
}
|
|
@ -4,9 +4,9 @@
|
|||
"scripts": {
|
||||
"dev": "next dev",
|
||||
"build": "next build",
|
||||
"export": "next export",
|
||||
"start": "next start",
|
||||
"lint": "next lint",
|
||||
"ghbuild": "next build && next export"
|
||||
"lint": "next lint"
|
||||
},
|
||||
"dependencies": {
|
||||
"next": "12.0.7",
|
||||
|
|
Loading…
Reference in a new issue