Skip to content
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Minds Frontend
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
384
Merge Requests
62
CI / CD
Security & Compliance
Packages
Analytics
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Frontend
Commits
bcc64ec5
Commit
bcc64ec5
authored
4 hours ago
by
Ben Hayward
Browse files
Options
Download
Removing temp files
parent
209a9522
fix/hashtag-pipes-2361
1 merge request
!762
Updated URL regex for hashtags to disregard hashes used mid-sentence. #2361
Pipeline
#115008508
failed with stages
in 5 minutes and 58 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
19 deletions
+1
-19
package.json
View file @
bcc64ec5
...
...
@@ -12,7 +12,7 @@
"build-dev"
:
"npm run build:dev"
,
"serve-dev"
:
"npm run server:ssr"
,
"build:dev"
:
"ng build --output-path dist --deploy-url=/ --watch=true --poll=800"
,
"serve:dev"
:
"ng serve --host=0.0.0.0 --deploy-url=/ --configuration=hmr --hmr --poll=800 --progress --disableHostCheck=true
--proxy-config proxy.conf.json
"
,
"serve:dev"
:
"ng serve --host=0.0.0.0 --deploy-url=/ --configuration=hmr --hmr --poll=800 --progress --disableHostCheck=true"
,
"test"
:
"ng test"
,
"lint"
:
"ng lint"
,
"e2e"
:
"cypress run --debug"
,
...
...
This diff is collapsed.
proxy.conf.json
deleted
100644 → 0
View file @
209a9522
{
"/api"
:
{
"target"
:
"http://localhost:80"
,
"secure"
:
false
},
"/fs"
:
{
"target"
:
"http://localhost:80"
,
"secure"
:
false
},
"/icon"
:
{
"target"
:
"http://localhost:80"
,
"secure"
:
false
},
"/carousel"
:
{
"target"
:
"http://localhost:80"
,
"secure"
:
false
}
}
This diff is collapsed.
Please
register
or
sign in
to comment