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 8f3341a commit 953dabdCopy full SHA for 953dabd
config/webpack.config.js
@@ -1,4 +1,3 @@
1
-// prettier-ignore
2
const webpack = require('webpack');
3
const path = require('path');
4
const paths = require('./paths');
src/embed/App.js
@@ -112,6 +112,9 @@ export default class App extends React.PureComponent {
112
m => m.title === 'index.js' && m.directoryShortid == null,
113
).shortid;
114
115
+ document.title = response.data.title
116
+ ? `${response.data.title} - CodeSandbox`
117
+ : 'Embed - CodeSandbox';
118
this.setState({ sandbox: response.data, currentModule });
119
} catch (e) {
120
this.setState({ notFound: true });
0 commit comments