Skip to content

Commit

Permalink
chore: adds netlify route redirects
Browse files Browse the repository at this point in the history
  • Loading branch information
rustygreen committed Feb 10, 2024
1 parent b2c4d89 commit 6bbe1ec
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
16 changes: 10 additions & 6 deletions apps/demo/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,25 @@
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"projectType": "application",
"prefix": "ng-supabase",
"sourceRoot": "apps/demo//src",
"sourceRoot": "apps/demo/src",
"tags": [],
"targets": {
"build": {
"executor": "@angular-devkit/build-angular:application",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/apps/demo/",
"index": "apps/demo//src/index.html",
"browser": "apps/demo//src/main.ts",
"index": "apps/demo/src/index.html",
"browser": "apps/demo/src/main.ts",
"polyfills": ["zone.js"],
"tsConfig": "apps/demo//tsconfig.app.json",
"tsConfig": "apps/demo/tsconfig.app.json",
"inlineStyleLanguage": "scss",
"assets": ["apps/demo//src/favicon.ico", "apps/demo//src/assets"],
"styles": ["apps/demo//src/styles.scss"],
"assets": [
"apps/demo/src/favicon.ico",
"apps/demo/src/assets",
"apps/demo/src/_redirects"
],
"styles": ["apps/demo/src/styles.scss"],
"scripts": []
},
"configurations": {
Expand Down
1 change: 1 addition & 0 deletions apps/demo/src/_redirects
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/* /index.html 200
Binary file modified apps/demo/src/favicon.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ng-supabase/source",
"version": "1.0.0-rc.1",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"nx": "nx",
Expand Down

0 comments on commit 6bbe1ec

Please sign in to comment.