We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95536c1 commit 578da04Copy full SHA for 578da04
.github/workflows/publish-package.yml
@@ -10,8 +10,6 @@ jobs:
10
runs-on: ubuntu:latest
11
environment: publish
12
13
-
14
15
steps:
16
- name: Checkout repository
17
uses: actions/checkout@v4
.travis.yml
@@ -19,4 +19,5 @@ before_script:
19
20
script:
21
- npm install
22
+ - echo travis build definition
23
- npm run build
netlify.toml
@@ -0,0 +1,15 @@
1
+[build]
2
+ command = "npm install && npm run build"
3
+ publish = "dist"
4
+
5
+[test]
6
+ command = "npm run test"
7
8
+[build.environment]
9
+ NODE_VERSION = "20"
+ NPM_FLAGS = "--legacy-peer-deps" # Optional, useful if you run into dependency resolution issues
+[[redirects]]
+ from = "/*"
+ to = "/index.html"
+ status = 200
0 commit comments