Skip to content

Commit af65704

Browse files
revert package.json
1 parent 42e929a commit af65704

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/applications.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
matrix:
1919
APPROACH:
2020
- angular
21+
- react
2122
NODE:
2223
- 18
2324
OS:

packages/devextreme-cli/testing/app-template.test.shared.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ module.exports = (env, { port = 8080, urls = {} } = {}) => {
3131
let browser;
3232
let page;
3333

34-
const getPageURL = (name) => `${appUrl}${(env.engine.startsWith('react') || env.engine.startsWith('vue') ? '#/' : '')}${pageUrls[name]}`;
34+
const getPageURL = (name) => `${appUrl}${(!env.engine.startsWith('nextjs') ? '#/' : '')}${pageUrls[name]}`;
3535

3636
beforeAll(async() => {
3737
browser = await getBrowser();

packages/devextreme-schematics/src/add-layout/files/src/app/app.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { ApplicationConfig, provideZoneChangeDetection } from '@angular/core';
2-
import { provideRouter } from '@angular/router';
2+
import { provideRouter, withHashLocation } from '@angular/router';
33
import { routes } from './app.routes';
44
import {
55
AppInfoService,
@@ -11,7 +11,7 @@ import {
1111
export const appConfig: ApplicationConfig = {
1212
providers: [
1313
provideZoneChangeDetection({ eventCoalescing: true }),
14-
provideRouter(routes),
14+
provideRouter(routes, withHashLocation()),
1515
AuthGuardService,
1616
AuthService,
1717
ScreenService,

0 commit comments

Comments
 (0)