Skip to content

Commit

Permalink
feat: config.next.mjs => next.config.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
grzegorzpokorski committed Oct 25, 2024
1 parent 0d0aa1f commit 6039f00
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions next.config.mjs → next.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
/* eslint-disable @typescript-eslint/require-await */

import type { NextConfig } from "next";

const nextConfig: NextConfig = {
reactStrictMode: true,
async redirects() {
redirects: async () => {
return [
{
source: "/oferta/tworzenie-stron-internetowych",
Expand Down

0 comments on commit 6039f00

Please sign in to comment.